home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
Misc Utils
/
ViewIt™ 2.2 Shareware
/
Projects
/
LS Fortran 3.0 Demos
/
MinimumLF.f
< prev
next >
Wrap
Text File
|
1993-05-14
|
637b
|
24 lines
C NOTE: Read the "MPW Fortrans" section of "About Compilers"
C before compiling LF programs that use FaceWare modules.
C Minimum LF Demonstration Program
C ©FaceWare 1991-93. All Rights Reserved.
!!M Inlines.f
!!I FaceProcLF.inc
PROGRAM MinimumLF
implicit none
C NOTE: If you use the "!!G" directive for precompiled globals, add
C our FaceStorLF.inc globals to yours and then remove following line
include 'FaceStorLF.inc'
record /FaceRec/ fRec
common/FaceStuff/fRec
fRec.uName = 'Minimum.Rsrc'
call FaceIt(0,DoInit,0,0,0,0)
do while (.true.)
call FaceIt(0,DoLoop,0,0,0,0)
end do
end